home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / p4 / p4-1_2a.lha / p4-1.2a / bin / format next >
Text File  |  1992-10-19  |  148b  |  7 lines

  1. #!/bin/csh
  2. foreach fn (`ls p4*.c`)
  3.     echo formatting $fn
  4.     indent $fn temp -i4 -bl -di2 -npcs -nip -nce -npsl -nfc1 -cli0.5
  5.     mv temp $fn
  6. end
  7.